home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000005_news@columbia.edu_Wed Jul 26 14:28:48 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14980
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Jul 1995 10:29:00 -0400
  3. Received: by apakabar.cc.columbia.edu id AA02201
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Jul 1995 10:28:58 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Kermit uploads from DOS to Unix
  9. Date: 26 Jul 1995 14:28:48 GMT
  10. Organization: Columbia University
  11. Lines: 67
  12. Message-Id: <3v5jf0$24l@apakabar.cc.columbia.edu>
  13. References: <3v3c9v$ga3@hustle.rahul.net>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3v3c9v$ga3@hustle.rahul.net>,
  18. Clarence Dold  <dold@rahul.net> wrote:
  19. >In article <3v16jk$o8f@gold.tc.umn.edu> you wrote:
  20. >
  21. >: I just got the latest version of Kermit from the ftp site and I can't get 
  22. >: long-packet transfers to work.  Needless to say, this is very 
  23. >: aggravating for me.  I've read the .bwr file, but I can't get any of the 
  24. >: suggestions there to work.  Please help!
  25. >
  26. >To go from DOS <-> UNIX, you very likely need a customized file,
  27. >mscustom.ini, copied to your UNIX directory as .kermrc
  28. >
  29. >With some care, the same file can be used on both systems.
  30. >The UNIX version also has to be 188 or higher.
  31. >Lacking a .kermrc on the UNIX side, you will be stuck with non-optimal, but
  32. >reliable, settings.
  33. >
  34. Thanks, Clarence.  But I don't want people to be left with the mistaken
  35. impression that the only way to configure Kermit is with a mysterious
  36. external file (like WIN.INI, etc, for Windows).
  37.  
  38. Kermit initialization files contain ordinary Kermit commands that can be
  39. typed by anybody at any time.  The ones that we distribute contain
  40. reasonable values, i.e. values that should work for everybody "out of the
  41. box".
  42.  
  43. Here are a couple rules of thumb we have developed over the years:
  44.  
  45.  1. You should not change your MSKERMIT.INI or CKERMIT.INI or .kermrc
  46.     file from the standard, distributed one unless you REALLY know what
  47.     you are doing.  Otherwise it's impossible to answer your questions,
  48.     address your problems, etc.
  49.  
  50.  2. Make all your desired customizations in the MSCUSTOM.INI or CKERMOD.INI
  51.     or .mykermrc file.
  52.  
  53. Customizations relating to protocol parameters (packet lengths, window
  54. sizes, and particularly control-character unprefixing) should not be made
  55. without some understanding of what you are doing.  If these speedups were
  56. safe for everybody, believe me, we'd make them standard defaults and avoid
  57. the "Kermit is too slow" discussions.  Nothing would be easier than for us
  58. to make:
  59.  
  60.   SET WINDOW 30
  61.   SET RECEIVE PACKET-LENGTH 5000
  62.   SET CONTROL UNPREFIX ALL
  63.  
  64. the defaults for everybody.  Unfortunately, many of our computers and
  65. connections are not up to handling protocol defaults beyond the ones that
  66. we already have, and transfers would fail for lots of people.
  67.  
  68. But don't worry, you don't have to stay up all night cramming in order to
  69. make Kermit go fast.  Try this instead: at the MS-DOS Kermit 3.14 or
  70. C-Kermit 5A(190) prompt, simply type:
  71.  
  72.   FAST
  73.  
  74. Do this on both ends, assuming you have one of these programs on each end
  75. (these are the current versions).
  76.  
  77. Now try to transfer a file.  If it works, and it works without lots of
  78. errors (retransmissions), then you're done.  Otherwise, you'll have to do
  79. a little studying -- but in that case, would also have had to do a little
  80. studying with any other protocol too, because it probably would not have
  81. worked on this connection either.
  82.  
  83. - Frank